View Javadoc
1 package jrre.classloader.classfile.attributes; 2 3 public class LocalVariableEntry { 4 5 int startPC, entryLength, nameIndex, descriptorIndex, stackFrameIndex; 6 7 public LocalVariableEntry(){} 8 9 public LocalVariableEntry(int startPC, 10 int entryLength, 11 int nameIndex, 12 int descriptorIndex, 13 int stackFrameIndex){ 14 15 this.startPC = startPC; 16 this.entryLength = entryLength; 17 this.nameIndex = nameIndex; 18 this.descriptorIndex = descriptorIndex; 19 this.stackFrameIndex = stackFrameIndex; 20 } 21 22 public String toString(){ 23 StringBuffer toReturn = new StringBuffer(); 24 25 toReturn.append("LocalVariableEntry: "); 26 27 return toReturn.toString(); 28 } 29 } 30

This page was automatically generated by Maven